home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / examples / exam10 / class1.d < prev    next >
Text File  |  1995-09-27  |  1KB  |  52 lines

  1.  
  2.  
  3.  
  4.  
  5. /*
  6.  *
  7.  *    This source code is CONFIDENTIAL and
  8.  *    PROPRIETARY to Algorithms Corporation. Unauthorized
  9.  *    distribution, adaptation or use    may
  10.  *    be subject to civil and    criminal penalties.
  11.  *
  12.  *    Copyright (c) 1993 Algorithms Corporation
  13.  *    3020 Liberty Hills Drive
  14.  *    Franklin, TN  37064
  15.  *
  16.  *    ALL RIGHTS RESERVED.
  17.  *
  18.  *
  19.  *
  20.  */
  21.  
  22.  
  23. /*  The following is the minimum steps necessary in order to define a new
  24.     class.  Its name is defined to be Class1.  Since no superclasses are
  25.     explicitly declared, Class1 will default to having a single superclass
  26.     which will be the class Object.  Also note that this class has no
  27.     class or instance variables defined.  */
  28.  
  29.  
  30. defclass  Class1;
  31.  
  32.  
  33.  
  34. /*
  35.  *
  36.  *    This source code is CONFIDENTIAL and
  37.  *    PROPRIETARY to Algorithms Corporation. Unauthorized
  38.  *    distribution, adaptation or use    may
  39.  *    be subject to civil and    criminal penalties.
  40.  *
  41.  *    Copyright (c) 1993 Algorithms Corporation
  42.  *    3020 Liberty Hills Drive
  43.  *    Franklin, TN  37064
  44.  *
  45.  *    ALL RIGHTS RESERVED.
  46.  *
  47.  *
  48.  *
  49.  */
  50.  
  51.  
  52.